home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Libraries / dsound / DS_SoundLib.contents next >
Encoding:
Text File  |  1994-01-11  |  614 b   |  14 lines  |  [TEXT/KAHL]

  1. /* FUNCTION PROTOTYPES */
  2. OSErr    DS_InitSound( void );
  3. void    DS_DisposeSound( void );
  4. void    DS_SetSoundFlag( short flag );
  5. void    DS_SetMusicFlag( short flag );            // start music?
  6. void    DS_LoadMusic( Str255 musicRsrcName );    // clobber existing?
  7. void    DS_MusicPlay( void );                    // called internally, don't use!!
  8. void    DS_SoundPlay( Str255 soundRsrcName, short clobber );
  9. Boolean    DS_SoundBusy( void );
  10. void    DS_WaitForQuiet( void );
  11. void    DS_ClobberSound( void );
  12. void    DS_ClobberMusic( void );
  13. pascal void     DS_SoundCallBack( SndChannel *Chan, SndCommand cmd );
  14. pascal void     DS_MusicCallBack( SndChannel *Chan, SndCommand cmd );